home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 4_10.lha / 4_10 / 4_10a1.c next >
C/C++ Source or Header  |  1993-08-08  |  295b  |  12 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. ouble **mkarray(int rows, int cols)
  6.  
  7.    double **ret = new double *[rows];
  8.    for (int i = 0; i < cols; i++)
  9. ret[i] = new double[cols];
  10.    return ret;
  11.  
  12.